home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / ggraph / RCS / ggraphdefs.h,v < prev    next >
Text File  |  1989-07-12  |  1KB  |  65 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     89.07.12.01.40.47;  author douglis;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @baseline from monet (?)
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @#include <stdio.h>
  27. #include <errno.h>
  28. #include "ggraphstruct.h"
  29.  
  30. extern struct agraph graph[];        /* the graphs */
  31. extern float   graphx, graphy;        /* a point on the graph */
  32. extern int     curline;
  33. extern int     curgraph;
  34. extern int     maxlines;        /* number of lines read in */
  35. extern int     errno;
  36. extern char    firstline[]; /* first line of gremlin file */
  37. extern char    sfirstline[]; /* first line of gremlin file */
  38. extern int     xgridf;
  39. extern int     ygridf;
  40. extern int     xaxisf;
  41. extern int     yaxisf;
  42. extern int     xtickf;
  43. extern int     ytickf;
  44. extern int     xticklf;
  45. extern int     yticklf;
  46. extern int     titlef;
  47. extern int     framef;
  48. extern int     symbsw;
  49. extern int     crossxsw;
  50. extern int     crossysw;
  51. extern int     legendf;
  52. extern int     legendbox;
  53. extern int     legendside;
  54.  
  55. extern FILE *outfile;        /* output file */
  56. extern char *commands[];    /* commands */
  57. extern char *justify_names[];    /* justification */
  58. extern int debug;         /* debugging switch */
  59. extern int ycharsz[];        /* size of characters */
  60. extern int xcharsz[];        /* origin array of characters */
  61. extern int descenders[];    /* descender array of characters */
  62. extern char graphname[];    /* name of graph file being drawn */
  63. extern int version;        /* version to use */
  64. @
  65.